Three New Tags


<ul> Unordered List </ul>

The <ul> tag defines an unordered (bulleted) list. Use the <ul> tag together with the <li> tag to create unordered lists.

Grocery List

The code that produced the output above looks like this:

<ul>
<li> Coffee </li>
<Tea>
<ul>
<li>Black tea</li>
<li>Green tea</li>
</ul>
</li>
<li>Milk</li>
</ul>


I found this tag at W3Schools


<footer> Footer </footer>

The <footer> tag defines a footer for a document or section. You can have several footer elements in one document. Footer element shoould go inside a <address> tag.

The code that produced the output above looks like this:

<address>
<footer>
Written by Cole Mausteller
Visit us at: Example.com
Luzerne County Community College
Nanticoke, PA
</address>
</footer>


I found this tag at MozillaDeveloper


<input> Input </input>

The HTML <input> tag is used to represent a form input control in HTML document. This form input control facilitate user to input data and communicate with a website or application. Let's take an example of an HTML form with three input fields, two text fields and one button for submission.

First name:
Last name:

The code that produced the output above looks like this:

<form action="#">
First name: <input type="text" name="FirstName" placeholder="enter firstname...">
Last name: <input type="text" name="LastName" placeholder="enter lastname...">
<input type="submit" value="Submit">
</form>

I found this tag at javaTpoint